HTML文件
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Clock</title>
<!-- 引用外部的 CSS 文件設置時鐘樣式 -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- 創建一個容器來顯示時鐘 -->
<div class="clock-container">
<h1 id="clock"></h1> <!-- 顯示時間的標籤,時間會顯示在這裡 -->
</div>
<!-- 引用外部的 JavaScript 文件 -->
<script src="script.js"></script>
</body>
</html>
JavaScript文件
// 創建一個函數來獲取當前時間並更新到頁面上
function updateClock() {
const clockElement = document.getElementById('clock'); // 取得顯示時間的 DOM 元素
const now = new Date(); // 獲取當前日期與時間
// 格式化時間(補零,確保是兩位數)
const hours = String(now.getHours()).padStart(2, '0');
const minutes = String(now.getMinutes()).padStart(2, '0');
const seconds = String(now.getSeconds()).padStart(2, '0');
// 更新頁面上顯示的時間
clockElement.textContent = `${hours}:${minutes}:${seconds}`;
}
// 設置每秒調用一次 updateClock 函數,實現動態更新
setInterval(updateClock, 1000);
// 當頁面載入時馬上顯示當前時間
updateClock();
CSS文件
/* 基本樣式設定,使時鐘居中顯示 */
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh; /* 設定頁面的高度為整個視窗 */
margin: 0;
}
/* 時鐘容器的樣式 */
.clock-container {
background-color: #fff; /* 背景設為白色 */
padding: 20px;
border-radius: 10px; /* 邊框圓角 */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 添加陰影 */
}
/* 時間文字的樣式 */
#clock {
font-size: 48px; /* 設定時間文字的大小 */
color: #333; /* 設定時間文字的顏色 */
text-align: center; /* 文字居中 */
}